home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950929-19951130 / 000260_news@columbia.edu_Tue Oct 31 06:15:02 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28490
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 1 Nov 1995 07:37:31 -0500
  3. Received: by apakabar.cc.columbia.edu id AA22733
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 1 Nov 1995 07:37:29 -0500
  5. Path: news.columbia.edu!panix!news.eecs.umich.edu!newsxfer.itd.umich.edu!news.uoregon.edu!news.algonet.se!eua.ericsson.se!erinews.ericsson.se!cnn.exu.ericsson.se!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Maximum transfer speed
  9. Message-Id: <1995Oct31.121502.65498@cc.usu.edu>
  10. Date: 31 Oct 95 12:15:02 MDT
  11. References: <Pine.HPP.3.91.951030000148.24557B-100000@bluejay.creighton.edu> <475c3c$ac7@apakabar.cc.columbia.edu>
  12. Organization: Utah State University
  13. Lines: 72
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <475c3c$ac7@apakabar.cc.columbia.edu>, fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  17. > In article <Pine.HPP.3.91.951030000148.24557B-100000@bluejay.creighton.edu>,
  18. > Psychos 'R Us  <honge@creighton.edu> wrote:
  19. > : ...
  20. > : Per someone else's suggestion, I typed these on the HP-UX kermit before 
  21. > : giving it the command "server" and begin downloading:
  22. > : 
  23. > : set file type binary
  24. > : set warning on
  25. > : set buffer 65536 65536
  26. > : set window 24
  27. > : set send packet 2048
  28. > : set block-check 2
  29. > : set flow none
  30. > : set flow rts
  31. > : 
  32. > : With OS/2 c-kermit, the transfer rate is around 1350cps.
  33. > :
  34. > Which can probably be pushed up towards 1600 bps by unprefixing
  35. > control-characters.
  36. > : With MS-kermit... 
  37. > :
  38. > Which version?
  39. > : ... the transfer rate is around 880cps. The effeciency is around 18%.
  40. > :
  41. > The percent efficiency is based on the interface speed, not the
  42. > modulation speed.  Since ZIP files can't be further compressed by
  43. > the modem, the upward bound on transferring them is approximately
  44. > 1.11 times the modulation speed = 1600 cps (derivation of this figure
  45. > is left as an exercise for the reader :-).  880 cps is therefore more
  46. > like 55%, not 18%.
  47. > : There are almost no retries. FYI, Y-modem G under same situation
  48. > : will do around 1681cps with Hayes Smartcom (MS-DOS app) or halite that
  49. > : came with OS/2.  I have set both OS/2 ck and MS-DOS kermit to rts/cts.
  50. > : ...
  51. > : The machine has Hayes ESP, which is kinda like 16550A with extended 
  52. > : buffer size. The modem is Hayes Accura 14.4, which I think is also a 
  53. > : decent modem...
  54. > : 
  55. > The most likely explanation involves the Hayes ESP board.  It can be used
  56. > at three different levels: nonbuffered 8250 UART compatibility mode,
  57. > 16-byte FIFO 16550A UART compatibility mode, and "native" ESP mode (with
  58. > 1K buffer, DMA, etc), which is quite different from anything else on the
  59. > planet and requires special drivers.  Now obviously Hayes Smartcom knows
  60. > how to drive the ESP board to full advantage, hence the higher transfer
  61. > rates with Hayes software.  I expect that the OS/2 serial driver knows
  62. > enough about the ESP to put it into 16550A mode, but beyond that, does not
  63. > bother with the Hayes-specific features.
  64. > I might be mistaken, but I believe that some special magic is required to
  65. > put the ESP in 16550A mode, and this magic first appeared in MS-DOS Kermit
  66. > version 3.14.  If that is true, then previous releases probably use it in
  67. > character-at-a-time 8250 mode, which would explain the symptoms you
  68. > report.  We did look at adding a Hayes ESP driver to MS-DOS Kermit, but it
  69. > turned out to be a huge amount of work for a relatively small audience,
  70. > and so it wound up in a rather low position on our priority list.
  71. > - Frank
  72. ---------
  73.     On the Hayes ESP board. MSK does not have special code for it.
  74. As things turned out none was needed if the board is configured by the
  75. ESP configuration program. It looks like a 16550A UART. The fancy DMA
  76. transfer capability of the board is, um, not exactly what a communications
  77. program would use and details are best left between Hayes and the programmer.
  78. There is a Windows driver for the board, from Hayes (with that DMA stuff),
  79. but it also runs without it.
  80.     So the obvious suggestion here is to re-run the ESP configuration
  81. program to be sure it's capabilities have not faded from static memory.
  82.     Joe D.